type net/http.http2Framer
40 uses
net/http (current package)
h2_bundle.go#L1833: type http2Framer struct {
h2_bundle.go#L1897: debugFramer *http2Framer // only use for logging written writes
h2_bundle.go#L1905: func (fr *http2Framer) maxHeaderListSize() uint32 {
h2_bundle.go#L1912: func (f *http2Framer) startWrite(ftype http2FrameType, flags http2Flags, streamID uint32) {
h2_bundle.go#L1926: func (f *http2Framer) endWrite() error {
h2_bundle.go#L1948: func (f *http2Framer) logWrite() {
h2_bundle.go#L1966: func (f *http2Framer) writeByte(v byte) { f.wbuf = append(f.wbuf, v) }
h2_bundle.go#L1968: func (f *http2Framer) writeBytes(v []byte) { f.wbuf = append(f.wbuf, v...) }
h2_bundle.go#L1970: func (f *http2Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) }
h2_bundle.go#L1972: func (f *http2Framer) writeUint32(v uint32) {
h2_bundle.go#L1984: func (fr *http2Framer) SetReuseFrames() {
h2_bundle.go#L2003: func http2NewFramer(w io.Writer, r io.Reader) *http2Framer {
h2_bundle.go#L2004: fr := &http2Framer{
h2_bundle.go#L2028: func (fr *http2Framer) SetMaxReadFrameSize(v uint32) {
h2_bundle.go#L2042: func (fr *http2Framer) ErrorDetail() error {
h2_bundle.go#L2069: func (fr *http2Framer) ReadFrameHeader() (http2FrameHeader, error) {
h2_bundle.go#L2091: func (fr *http2Framer) ReadFrameForHeader(fh http2FrameHeader) (http2Frame, error) {
h2_bundle.go#L2129: func (fr *http2Framer) ReadFrame() (http2Frame, error) {
h2_bundle.go#L2141: func (fr *http2Framer) connError(code http2ErrCode, reason string) error {
h2_bundle.go#L2149: func (fr *http2Framer) checkFrameOrder(fh http2FrameHeader) error {
h2_bundle.go#L2259: func (f *http2Framer) WriteData(streamID uint32, endStream bool, data []byte) error {
h2_bundle.go#L2272: func (f *http2Framer) WriteDataPadded(streamID uint32, endStream bool, data, pad []byte) error {
h2_bundle.go#L2281: func (f *http2Framer) startWriteDataPadded(streamID uint32, endStream bool, data, pad []byte) error {
h2_bundle.go#L2436: func (f *http2Framer) WriteSettings(settings ...http2Setting) error {
h2_bundle.go#L2449: func (f *http2Framer) WriteSettingsAck() error {
h2_bundle.go#L2479: func (f *http2Framer) WritePing(ack bool, data [8]byte) error {
h2_bundle.go#L2524: func (f *http2Framer) WriteGoAway(maxStreamID uint32, code http2ErrCode, debugData []byte) error {
h2_bundle.go#L2590: func (f *http2Framer) WriteWindowUpdate(streamID, incr uint32) error {
h2_bundle.go#L2705: func (f *http2Framer) WriteHeaders(p http2HeadersFrameParam) error {
h2_bundle.go#L2818: func (f *http2Framer) WritePriority(streamID uint32, p http2PriorityParam) error {
h2_bundle.go#L2858: func (f *http2Framer) WriteRSTStream(streamID uint32, code http2ErrCode) error {
h2_bundle.go#L2895: func (f *http2Framer) WriteContinuation(streamID uint32, endHeaders bool, headerBlockFragment []byte) error {
h2_bundle.go#L2994: func (f *http2Framer) WritePushPromise(p http2PushPromiseParam) error {
h2_bundle.go#L3020: func (f *http2Framer) WriteRawFrame(t http2FrameType, flags http2Flags, streamID uint32, payload []byte) error {
h2_bundle.go#L3143: func (fr *http2Framer) maxHeaderStringLen() int {
h2_bundle.go#L3155: func (fr *http2Framer) readMetaFrame(hf *http2HeadersFrame) (http2Frame, error) {
h2_bundle.go#L4575: framer *http2Framer
h2_bundle.go#L4681: func (sc *http2serverConn) Framer() *http2Framer { return sc.framer }
h2_bundle.go#L7692: fr *http2Framer
h2_bundle.go#L10779: Framer() *http2Framer